home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Libraries
/
Std I⁄O for C
/
sf_stdio.h
< prev
next >
Wrap
Text File
|
1988-03-02
|
373b
|
17 lines
/* sf_stdio.h
*
* Chris Borton, 27 February 1988
* header file for sf_stdin() and sf_stdout() functions which provide
* a SFGet/PutFile and reset that text file as stdin/stdout stream
*/
/* I #define MAC in my stdio.h and use this to do prototypes */
#ifdef MAC
Boolean sf_stdin(void);
Boolean sf_stdout(void);
#else
int sf_stdin(void);
int sf_stdout(void);
#endif